b509d1f6c65918a95f576c7ca5bdd1ae6707c3ca,exo.jcr.component.core/src/test/java/org/exoplatform/services/jcr/impl/dataflow/persistent/TestCacheableWorkspaceDataManager.java,TestCacheableWorkspaceDataManager,testBigFileWithCacheEnabledByProps,#,332
Before Change
// Simulate cases where the file is null such as during a replication of StreamPersistedValueData with a spool file as file
// on all other cluster nodes the spool file doesn't exist so file will be set to null
fpvd.setPersistedFile(null);
pData2 = null;
for (PropertyData pd : cwdm.getChildPropertiesData(data.parentData()))
After Change
// Simulate cases where the file is null such as during a replication of StreamPersistedValueData with a spool file as file
// on all other cluster nodes the spool file doesn't exist so file will be set to null
if (fpvd.getFile() != null)
fpvd.setPersistedFile(null);
else
fpvd.setPersistedURL(null);
pData2 = null;
for (PropertyData pd : cwdm.getChildPropertiesData(data.parentData()))